123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712 |
- <template>
- <div id="newsList">
- <!-- 页面头部 -->
- <HomePageHead></HomePageHead>
- <!-- 导航栏 -->
- <HomePageNavigation1></HomePageNavigation1>
- <!-- 列表页广告一 -->
- <HomeTopTen :imgurl="adList[0]" v-if="adList[0]"></HomeTopTen>
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">当前位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
- <el-breadcrumb-item>{{ name }}</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 资讯列表 -->
- <div class="newsList">
- <div class="inner">
- <div class="innerLeft">
- <ul class="list">
- <li v-for="(item, index) in newsList" :key="index">
- <NuxtLink :to="item.linkurl" target="_blank" v-show="item.islink==1">{{ item.title }}</NuxtLink>
- <NuxtLink :to="`/newsDetail/${item.id}`" target="_blank" v-if="item.islink==0">{{ item.title }}</NuxtLink>
- </li>
- </ul>
- <!-- 分页器 -->
- <div class="pagination" v-if="total">
- <el-pagination size="small" background layout="prev, pager, next" :total="total" class="mt-4"
- v-model:page-size="pageSize" prev-text="上一页" next-text="下一页" @change="changePage" />
- </div>
- </div>
- <div class="innerRight">
- <DetailHotNews></DetailHotNews>
- <DetailHotNews2></DetailHotNews2>
- </div>
- </div>
- </div>
- <!-- 列表页广告二 -->
- <HomeTopTen :imgurl="adList[1]" v-if="adList[1]"></HomeTopTen>
- <!-- 页面底部 -->
- <HomeFoot1></HomeFoot1>
- </div>
- </template>
- <script setup>
- import { onMounted } from 'vue';
- import { ElBreadcrumb, ElBreadcrumbItem, ElPagination } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- const nuxtApp = useNuxtApp();
- const axios = nuxtApp.$axios;
- //获得跳转过来的id
- const route = useRoute();
- const articleId = route.params.id; //获得该页面的id
- // const category_id = route.query.category_id; //获得该页面的id
- const category_id = route.query.catid; //获得该页面的id
- // const name = route.query.name; //获得该页面的id
- // console.log(name);
- console.log('category_id', category_id);
- // 定义响应式数据
- const seoData = ref({
- title: '三农资讯网',
- description: '默认描述',
- keywords: '默认关键词',
- image: 'https://example.com/default-image.jpg'
- });
- // 在 onMounted 钩子中获取数据
- onMounted(async () => {
- try {
- const response = await axios.get(`/web/getWebsiteCategoryHead?catid=${articleId}`);
- const data = response.data; // 假设接口返回的数据在 data 字段中
- console.log(seoData.value.title)
- // 更新 seoData
- seoData.value = {
- title: data.seo_title,
- description: data.seo_description,
- keywords: data.seo_keywords,
- image: data.seo_image
- };
- console.log(seoData.value.title)
- } catch (error) {
- console.error('获取 SEO 数据失败:', error);
- // 设置默认值
- seoData.value = {
- title: '三农资讯网',
- description: '默认描述',
- keywords: '默认关键词',
- image: 'https://example.com/default-image.jpg'
- };
- }
- });
- // 监听 seoData 的变化,动态设置 SEO 字段
- watch(seoData, (newVal) => {
- if (newVal.title) { // 确保 title 有值
- useSeoMeta({
- title: newVal.title, // 使用动态值
- description: newVal.description,
- ogTitle: newVal.title,
- ogDescription: newVal.description,
- ogImage: newVal.image,
- twitterTitle: newVal.title,
- twitterDescription: newVal.description,
- twitterImage: newVal.image,
- keywords: newVal.keywords
- });
- }
- }, { immediate: true });
- //关键词
- let keyWord = useState("keyWord", () => "")
- let id = useState("id", () => "")
- let total = useState("total", () => 0)
- let page = useState("page", () => 1)
- let pageSize = useState("pageSize", () => 20)
- //获得广告
- const adList = ref("");
- const aa='LIST'
- const getadList = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteAdvertisement?ad_tag=${aa}`);
- adList.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- onMounted(() => {
- id.value = route.query.id;
- console.log('id', id.value);
- getadList()
- })
- // 页码
- // //页面组件传递数据的时间驱动函数
- // const handleData = (data) => {
- // console.log(data.value)
- // page.value = data.value
- // //在页码发生变化时去请求响应页面的新闻数据
- // axios.get(`/web/getWebsiteArticleList?page=${page.value}&pageSize=${10}&catid=${14}&keyword=${keyWord.value}`).then(response => {
- // // console.log(response.data.rows);
- // newsList.value = response.data.rows;
- // }).catch(error => {
- // console.error(error);
- // })
- // }
- let changePage = (value) => {
- console.log("当前页码", value);
- page.value = value
- console.log(page.value);
- newslists()
- }
- // 一级导航
- const navigation1 = ref("");
- const navigateList = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteModelCategory?placeid=${1}&pid=${0}&num=${24}`);
- console.log('一级导航', response.data);
- navigation1.value = response.data;
- console.log('111111111111111111111111111', navigation1[0]?.value.category_id);
- } catch (error) {
- console.error(error);
- }
- }
- // 新闻列表
- const newsList = useState("newsList", () => '');
- const newslists = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticleList?page=${page.value}&pageSize=${pageSize.value}&catid=${articleId}`);
- // console.log(response.data.rows);
- newsList.value = response.data.rows;
- total.value = response.data.count;
- } catch (error) {
- console.error(error);
- }
- }
- //热点资讯
- const hotlistall = useState("hotlistall", () => "");
- const hotlist = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${2}&level=${4}&placeid=${1}`);
- console.log('热点资讯', response.data);
- for (let item of response.data) {
- console.log(item);
- item.count = 1;
- }
- hotlistall.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- //资讯推荐1
- const news1 = useState("news1", () => "");
- const newslist1 = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${1}&level=${5}&placeid=${1}`);
- console.log('热点资讯', response.data);
- news1.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- const news11 = useState("news11", () => "");
- const newslist11 = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${3}&level=${5}&placeid=${1}`);
- console.log('热点资讯', response.data);
- news11.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- //资讯推荐2
- const news2 = useState("news2", () => "");
- const newslist2 = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${1}&level=${5}&placeid=${1}`);
- console.log('热点资讯', response.data);
- news2.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- const news22 = useState("news22", () => "");
- const newslist22 = async () => {
- try {
- const response = await axios.get(`/web/getWebsiteArticlett?pageSize=${3}&level=${5}&placeid=${1}`);
- console.log('热点资讯', response.data);
- news22.value = response.data;
- } catch (error) {
- console.error(error);
- }
- }
- const name = useState("name", () => "");
- const name1 = async () => {
- try {
- const response = await axios.get(`/web/getOneWebsiteCategory?catid=${articleId}`);
- console.log('name11111111', response.data);
- name.value = response.data.name;
- navigateList()
- } catch (error) {
- console.error(error);
- }
- }
- //挂载成功钩子函数
- onMounted(() => {
- name1()
- // 资讯推荐
- newslists()
- // 热点资讯
- hotlist()
- // 资讯推荐
- newslist1()
- newslist2()
- // 热点资讯
- newslist11()
- newslist22()
- // navigateList()
- })
- //路由中间件
- definePageMeta({
- middleware: 'auth'
- })
- </script>
- <style lang="less" scoped>
- #newsList {
- width: 100%;
- overflow: hidden;
- }
- //导航条
- .breadcrumb {
- width: 100%;
- height: 22px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- :deep(.el-breadcrumb) {
- display: inline-block;
- vertical-align: -4px;
- }
- :deep(.el-breadcrumb__inner a),
- :deep(.el-breadcrumb__inner.is-link) {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- span:hover {
- color: #666666;
- }
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- // 资讯列表
- .newsList {
- width: 100%;
- // height: 675px;
- overflow: hidden;
- margin-bottom: 70px;
- .inner {
- width: 1200px;
- .innerLeft,
- .innerRight {
- border-top: 1px solid #139602;
- }
- .innerLeft {
- // height: 675px;
- >.list {
- // height: 570px;
- margin-bottom: 70px;
- >li {
- width: 790px;
- height: 56px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- line-height: 56px;
- >a {
- width: 360px;
- height: 26px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #333333;
- line-height: 26px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- >li:hover>a {
- color: #139602;
- }
- >li:nth-child(1)::after,
- >li:nth-child(2)::after {
- content: "热";
- margin-left: 13px;
- background: #FF8A37;
- color: #fff;
- font-size: 14px;
- padding: 0px 2px;
- }
- >li:nth-child(5n) {
- // padding-top: 10px;
- // padding-bottom: 10px;
- border-bottom: 1px solid #D9D9D9;
- }
- }
- >.pagination {
- width: 800px;
- height: 34px;
- margin-left: 141px;
- display: flex;
- justify-content: center;
- margin: 0;
- // 鼠标移入后字体颜色
- .el-pagination::v-deep :hover {
- color: #139609;
- }
- .el-pagination.is-background::v-deep .btn-next,
- .el-pagination.is-background::v-deep .btn-prev {
- width: 70px;
- height: 34px;
- margin: 0px 10px;
- border-radius: 4px;
- }
- .el-pagination.is-background::v-deep .el-pager li {
- margin: 0px 10px;
- width: 38px;
- height: 34px;
- border-radius: 4px;
- }
- .el-pagination.is-background::v-deep .btn-next.is-active,
- .el-pagination.is-background::v-deep .btn-prev.is-active,
- .el-pagination.is-background::v-deep .el-pager li.is-active {
- background-color: #028e21;
- color: #fff;
- }
- }
- }
- .innerRight {
- width: 381px;
- // height: 605px;
- }
- }
- }
- //资讯推荐
- .zixuntuijian {
- width: 100%;
- height: 290px;
- margin-bottom: 70px;
- .innerLeft {
- // 左侧
- .zixunLeft {
- margin-right: 30px;
- }
- .zixunRight,
- .zixunLeft {
- float: left;
- width: 380px;
- height: 290px;
- // 标题部分
- >.title {
- width: 380px;
- }
- >.title>h3 {
- height: 36px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: bold;
- font-size: 24px;
- color: #000000;
- line-height: 28px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- border-bottom: 1px solid #139602;
- }
- >.title>h3>span {
- float: right;
- width: 56px;
- height: 20px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- font-style: normal;
- text-transform: none;
- }
- .photo_text {
- >li:first-child {
- width: 380px;
- height: 120px;
- margin-top: 20px;
- margin-bottom: 15px;
- position: relative;
- >img {
- float: left;
- width: 160px;
- height: 120px;
- }
- >div {
- float: left;
- width: 220px;
- height: 120px;
- padding-left: 15px;
- padding-top: 6px;
- box-sizing: border-box;
- background-color: #f6f6f6;
- >h5 {
- width: 200px;
- height: 54px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 26px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- >p {
- width: 200px;
- height: 22px;
- line-height: 20px;
- position: absolute;
- bottom: 5px;
- right: 0;
- >span {
- display: inline-block;
- // width: 100px;
- height: 18px;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 400;
- font-size: 12px;
- color: #999999;
- text-align: left;
- line-height: 14px;
- font-style: normal;
- text-transform: none;
- }
- >span:last-child {
- // width: 90px;
- text-align: right;
- margin-left: 20px;
- }
- }
- }
- }
- >li {
- width: 380px;
- height: 25px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 21px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- margin-bottom: 10px;
- em {
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 8px;
- margin-right: 10px;
- background-color: #d9d9d9;
- }
- }
- >li:hover {
- color: #139602;
- }
- >li:hover em {
- background-color: #139602;
- }
- }
- }
- }
- .innerRight {
- width: 381px;
- height: 290px;
- background-color: #fbfbfb;
- >.title {
- width: 380px;
- height: 40px;
- line-height: 40px;
- border-top: 1px solid #139602;
- border-bottom: 1px solid #e7e7e7;
- >h4 {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- margin-left: 20px;
- font-size: 20px;
- color: #000000;
- text-align: left;
- font-style: normal;
- text-transform: none;
- >span {
- float: right;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 14px;
- margin-right: 10px;
- color: #999999;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .rightList {
- height: 540px;
- margin-top: 20px;
- >li {
- height: 100px;
- margin-bottom: 10px;
- >img {
- width: 150px;
- height: 100px;
- }
- >p {
- width: 219px;
- height: 100px;
- padding-left: 12px;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #333333;
- line-height: 22px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- >p:hover {
- box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.1);
- }
- }
- }
- }
- }
- </style>
|